home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 March / EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso / earcd / comm2 / xstat115.lha / FORMS.doc next >
Text File  |  1994-05-08  |  4KB  |  161 lines

  1. The new V1.14 output format specifications
  2. ==========================================
  3.  
  4. IMPORTANT. THERE WAS A MISTAKE IN THE 1.14
  5. DOCUMENTATION WHICH CAUSED SOME CONFUSION.
  6. THE VARIABLES WERE CALLED
  7.  
  8.    STATFORM
  9.    VERBFORM
  10.  
  11. WHICH WAS WRONG. THE CORRECT NAMES ARE
  12.  
  13.    XSTATFORM
  14.    XSTATVERBFORM
  15.  
  16. SORRY.
  17.  
  18. Since Version 1.14, you can also use your own format
  19. specifications to determine what the XStat output
  20. will look like. There are two new environment variables
  21. that you can set:
  22.  
  23. XSTATFORM determines the layout of the "Statistics" output
  24. which is written once for each system, and once for global
  25. statistics.
  26.  
  27. XSTATVERBFORM determines the layout of the "Verbose" output,
  28. which is written for each entry of the XferStat file.
  29.  
  30. You can use any printable ISO8859-1 (extended 8 bit ASCII
  31. as used by the Amiga) character (except CHAR(0)), plus the
  32. following special format strings: (case sensitive!)
  33.  
  34.  
  35. Format strings for XSTATFORM:
  36. -----------------------------
  37.  
  38. &LF     line feed
  39. &FF     form feed
  40. &HN     host name
  41. &CD     call direction (IN/OUT)
  42. &cd     call direction (< / > )
  43. &FD     from date
  44. &TD     to date
  45. &AC     total number of connects
  46. &IC     number of ignored connects
  47. &LC     number of local connects
  48. &OT     total online time
  49. &ot     average online time
  50. &UN     total units
  51. &un     average units
  52. &CO     total cost
  53. &co     average cost
  54. &GR     gross read
  55. &gr     average gross read
  56. &GS     gross send
  57. &gs     average gross send
  58. &NR     net read
  59. &nr     average net read
  60. &NS     net send
  61. &ns     average net send
  62. &GC     gross cps
  63. &gp     gross peak cps
  64. &NC     net cps
  65. &np     net peak cps
  66. &CG     average cost (gross)
  67. &CN     average cost (net)
  68. &CS     currency symbol
  69.  
  70.  
  71. Format variables for XSTATVERBFORM:
  72. -----------------------------------
  73.  
  74. &LF     line feed
  75. &FF     form feed
  76. &HN     host name
  77. &CD     call direction (IN/OUT)
  78. &cd     call direction (< / > )
  79. &FD     from date
  80. &TD     to date
  81. &IC     ignored connect
  82. &LC     local connect
  83. &OT     online time
  84. &UN     units
  85. &CO     cost
  86. &GR     gross read
  87. &GS     gross send
  88. &NR     net read
  89. &NS     net send
  90. &GC     gross cps
  91. &NC     net cps
  92. &CS     currency symbol
  93.  
  94.  
  95. Usage is similar to C printf():
  96. -------------------------------
  97.  
  98.   &08HN
  99.   |^^^^
  100.   || |
  101.   || field type specification, see above
  102.   ||
  103.   |optional field width, 00..99 permitted (must be two digits)
  104.   |
  105.   escape character, use && to get it verbatim
  106.  
  107.  
  108. Defaults used by XStat:
  109. -----------------------
  110.  
  111. Use the environment variables XSTATFORM and XSTATVERBFORM to
  112. override these defaults.
  113.  
  114. WARNING! XSTATFORM and XSTATVERBFORM use internal buffers
  115. with a hardcoded width of 8191 characters.
  116.  
  117. XSTATVERBFORM
  118. -------------
  119. - cut - cut - cut - cut - cut - cut - cut - cut -
  120. &cd &08HN &FD &IC &LC &03OT &02UN &06CO &07GR &07GS &07NR &07NS &04GC &04NC&LF
  121. - cut - cut - cut - cut - cut - cut - cut - cut -
  122.  
  123. XSTATFORM
  124. ---------
  125. - cut - cut - cut - cut - cut - cut - cut - cut -
  126.  
  127.  
  128. &HN: Connection statistics for &CD calls.
  129.  
  130. Transfer statistics from &FD to &TD
  131.  
  132. number of connects  &08AC
  133. local connects      &08LC
  134. ignored connects    &08IC
  135.  
  136. total online time   &08OT     seconds
  137. total phone units   &08UN     units
  138. total phone cost    &12CO &CS
  139. average online time &08ot     seconds/connect
  140. average phone units &12un units/connect
  141. average phone cost  &12co &CS/connect
  142.  
  143. total gross read    &08GR     bytes
  144. total gross send    &08GS     bytes
  145. total net read      &08NR     bytes
  146. total net send      &08NS     bytes
  147. average gross read  &08gr     bytes/connect
  148. average gross send  &08gs     bytes/connect
  149. average net read    &08nr     bytes/connect
  150. average net send    &08ns     bytes/connect
  151.  
  152. average speed       &08GC     CPS (gross data transfer)
  153. fastest connect     &08gp     CPS (gross data transfer)
  154. average speed       &08NC     CPS (net data transfer)
  155. fastest connect     &08np     CPS (net data transfer)
  156.  
  157. average cost        &12CG &CS/MB (gross data transfer)
  158. average cost        &12CN &CS/MB (net data transfer)
  159.  
  160. - cut - cut - cut - cut - cut - cut - cut - cut -
  161.